Example 2: Finder Method on a Primary Key

  public static java.util.Collection findByName(String qst, UniversumHome home) 
  		throws SQLException, FinderException, RemoteException{
    	String where = " FIRST_NAME = '" + qst + "'";    
		return home.findBySQLWhere(where, UserPK.getInstance());
  }


